home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-13 | 309 b | 21 lines | [TEXT/ttxt] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class ARRAY_BENCH
-
- inherit BENCH;
-
- creation make
-
- feature
-
- make is
- local
- array: ARRAY[INTEGER];
- do
- !!array.make(1,0);
- bench(array);
- end;
-
- end -- ARRAY_BENCH
-